home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / atc.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  29 lines

  1. /*
  2.  * atc.h --
  3.  *
  4.  *    Declarations for the ATC disk controller. 
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/atc.h,v 9.2 92/10/23 15:04:34 elm Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _ATC
  19. #define _ATC
  20.  
  21. #define IOC_DEV_ATC            (18 << 16)
  22. #define IOC_DEV_ATC_RESET        (IOC_DEV_ATC | 3)
  23. #define IOC_DEV_ATC_READXBUS        (IOC_DEV_ATC | 4)
  24. #define IOC_DEV_ATC_WRITEXBUS        (IOC_DEV_ATC | 5)
  25. #define    IOC_ATC_DEBUG_ON            (IOC_DEV_ATC | 6)
  26. #define    IOC_ATC_DEBUG_OFF            (IOC_DEV_ATC | 7)
  27. #define IOC_DEV_ATC_IO                  (IOC_DEV_ATC | 8)
  28. #endif /* _ATC */
  29.